home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
cprog.EXE
/
CC_1.ZIP
/
CCARGC.C
< prev
next >
Wrap
Text File
|
1988-02-01
|
384b
|
10 lines
/*
** fetch argument count from DL register
*/
CCARGC() {
#asm
MOV AL,DL ;move argument count into function return register
CBW ;convert to 16 bit value
#endasm
}